Hello,
We are writing a book about Harmony with my friend. At the begining chapter we will give basic music theory knowledges. I am trying to write a C Major Scale. The letters between the notes are the step extentions.
I want to hide the Time Signature (8/1). But I can not.

You will see the code in the attached files.

Thank you.

--
Server ACİM
- Besteci (Composer)
- İnönü Üniversitesi Öğretim Üyesi (Full Professor of Music Composition at 
Inonu Universitesi - Malatya - TURKEY)
- Linux Mint Kullanıcısı ve Destekçisi (Linux Mint User and Supporter)

http://google.com/+ServerAcim
http://about.me/server.acim

\version "2.16.0"
\paper{
indent=0\mm
line-width=120\mm
oddFooterMarkup=##f
oddHeaderMarkup=##f
bookTitleMarkup = ##f
scoreTitleMarkup = ##f
}

%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\score {
  \relative c'  
  <<
    \new Staff {
      <<
        \new Voice \with {         
         \remove "Time_signature_engraver"
          \consists "Mark_engraver"
          \consists "Staff_collecting_engraver"
          
        }
        { \time 8/1
          c1^"Do Majör Dizi (DoM)"
          
          d e f g a b c
          \bar "|."
        }
        \new Voice \with {
          \remove "Time_signature_engraver"
          \consists "Mark_engraver"
          \consists "Staff_collecting_engraver"
          \override RehearsalMark #'direction = #DOWN
          
          }
        { \time 8/1
          s4 s s s
          \mark \markup { \circle T }
          s4 s s s
          \mark \markup { \circle T }
          s4 s s s
          \mark \markup { \circle Y }
          s4 s s s
          \mark \markup { \circle T }
          s4 s s s
          \mark \markup { \circle T }
          s4 s s s
          \mark \markup { \circle T }
          s4 s s s
          \mark \markup { \circle Y }                   
        }
      >>
    }
  >>
  \layout {    
    \context {      
      \Score
      \remove "Bar_number_engraver"
      \remove "Mark_engraver"
      \remove "Staff_collecting_engraver"
      \remove "Time_signature_engraver"
      
    }
  }
}





%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Aşağıdaki kodlara dokunma. Aşağıdaki kodlar, ölçü birimini kaldırıyor çünkü.
%\layout {
  %#(set-global-staff-size 14)
  %\context {
 %\Staff
 %\Voice
  % \remove "Time_signature_engraver"
  % \remove "Bar_number_engraver"
  % \remove "Separating_line_group_engraver"
  % \remove "Mark_engraver"
  % \remove "Staff_collecting_engraver"
  % \override RehearsalMark #'direction = #DOWN
  % }
%}
_______________________________________________
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user

Reply via email to