+++ /dev/null
-
-\context Staff <
- \context Voice = VA {
- \property Voice.forceHorizontalShift = "0.1"
- % \stemup \shifton
- \property Voice.verticalDirection=1
- \property Voice.horizontalNoteShift=1
- <g' d'>
- }
-
- \context Voice = VB {
- %\stemdown \shifton
- \property Voice.verticalDirection=-1
- \property Voice.horizontalNoteShift=1
- \property Voice.forceHorizontalShift = #-0.1
- <bes f'>
- }
->
+++ /dev/null
-\time 4/4;
-r \longa * 1/4 r\breve * 1/2
-r1 r2 r4 r8 r16 r32 r64 r128 r128
-\time 6/4;
-r1. r2. r4. r8. r16. r32. r64. r128. r128.
+++ /dev/null
-/*
- clef-engraver.hh -- declare Clef_engraver
-
- source file of the GNU LilyPond music typesetter
-
- (c) 1996, 1997--1999 Han-Wen Nienhuys <hanwen@cs.uu.nl>
-*/
-
-
-#ifndef CLEF_GRAV_HH
-#define CLEF_GRAV_HH
-
-#include "array.hh"
-#include "engraver.hh"
-#include "direction.hh"
-
-/// where is c-0 in the staff?
-class Clef_engraver : public Engraver {
- Clef_item * clef_p_;
- Clef_change_req * clef_req_l_;
- void create_clef();
- bool set_type (String);
-protected:
- virtual void do_process_requests();
- virtual void do_pre_move_processing();
- virtual void do_removal_processing();
- virtual void do_creation_processing();
- virtual void do_post_move_processing();
- virtual bool do_try_music (Music*);
- virtual void acknowledge_element (Score_element_info);
-public:
- VIRTUAL_COPY_CONS(Translator);
- int c0_position_i_;
- int clef_position_i_;
- Direction octave_dir_;
- String clef_type_str_;
- bool create_default_b_;
-
- Clef_engraver();
-
-
-};
-#endif
+++ /dev/null
-/*
- score-column.cc -- implement Paper_column
-
- source file of the GNU LilyPond music typesetter
-
- (c) 1997--1999 Han-Wen Nienhuys <hanwen@cs.uu.nl>
-*/