+++ /dev/null
-
- [todo]
- * runtime
-
-%{ "french" style: interbeam = intenote;
- "german" style: interbeam = 2/3 * interline
-%}
- as lily's style is currently german, we'll hardcode german style
- */
- // it seems that "interline" means _between_ lines
-// return ball(4).dim.y.length() * 2 / 3;
- return ball(4).dim.y.length() * 2 / 3 + 0.4; //ugh
-}
-\include "table_sixteen.ini"
-
-default_paper = paper {
- linewidth = 15 \cm;
- rule_thickness = 0.4\pt;
- interline = 4\pt;
- notewidth = 4\pt;
- interbeam = 7\pt;
- \symboltables { \table_sixteen }
-}
+++ /dev/null
-/*
- interpretor.hh -- declare Interpreter
-
- source file of the GNU LilyPond music typesetter
-
- (c) 1997 Han-Wen Nienhuys <hanwen@stack.nl>
-*/
-
-
-#ifndef INTERPRETER_HH
-#define INTERPRETER_HH
-
-#include "lily-proto.hh"
-
-#endif // INTERPRETER_HH
+++ /dev/null
-/*
- voice-gravs.hh -- declare Voice_engravers
-
- source file of the GNU LilyPond music typesetter
-
- (c) 1997 Han-Wen Nienhuys <hanwen@stack.nl>
-*/
-
-
-#ifndef VOICEGRAVS_HH
-#define VOICEGRAVS_HH
-
-#include "engraver-group.hh"
-#include "interpreter.hh"
-
-class Voice_engravers : public Interpreter, public Engraver_group_engraver {
-public:
- NAME_MEMBERS();
-
-protected:
- virtual bool interpret_request_b(Request*);
- virtual Interpreter* interpreter_l() { return this; }
-};
-
-
-#endif // VOICEGRAVS_HH
+++ /dev/null
-/*
- voice-gravs.cc -- implement Voice_engravers
-
- source file of the GNU LilyPond music typesetter
-
- (c) 1997 Han-Wen Nienhuys <hanwen@stack.nl>
-*/
-
-#include "proto.hh"
-#include "plist.hh"
-#include "command-request.hh"
-#include "musical-request.hh"
-#include "voice-gravs.hh"
-#include "engraver.hh"
-#include "debug.hh"
-
-
-ADD_THIS_ENGRAVER(Voice_engravers);
-IMPLEMENT_IS_TYPE_B1(Voice_engravers, Engraver_group_engraver);
-IMPLEMENT_STATIC_NAME(Voice_engravers);
-
-bool
-Voice_engravers::interpret_request_b(Request*r)
-{
- return try_request(r);
-}
-