lilypond-user
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Help to unhidde the "a"


From: Georges Roux
Subject: Re: Help to unhidde the "a"
Date: Mon, 18 Jul 2005 21:12:51 +0200
User-agent: Mozilla Thunderbird 1.0.2 (X11/20050602)

Erik Sandberg a écrit :

>I can't reproduce this (the a is not overwritten by any beam if I compile your 
>example). If it really does, it's a bug which we would like to know more 
>about. Can you please send a complete example in which the 'a' is overwritten 
>by a beam?
>
>Erik
>  
>
Thanks, here is my example, the note 9 of the first voice is overwritten
by beam.

Georges
\version "2.5.32"
% Sorry, I cant use 2.6.0 for now cause I m on Debian Sid
% and have problems to compile lilypond for now. 

\header {
  title = "The A overwritten by beam"
  subtitle = ""
  composer = "Jean Sebastien Bach (1685-1750)"
  style = "Classical"
  copyright = "Public Domain"  
  maintainer = "Georges Roux"
  lastupdated = "2005/07/18"
  filename  = "overwrittenbybeam.ly"
  instrument  = "Guitare"
  piece = ""
  }

global = {
    \clef "G_8"
    \time 3/4
    \key e \major
  }
  
midiStuff = {
  \set Staff.midiInstrument = "acoustic guitar (nylon)"
  }
  
upperVoice = \relative c' {
%  \stemUp
  << { \stemDown e16[ s gis s fis s gis s a s fis s ] } \\ { \stemUp s e16[ s e 
s e s e s e s e ] } >>                                 %14
  }

lowerVoice = \relative c, {
  \stemDown
  R2.                                                               %14
  }

Guitare = \simultaneous {
  \context Voice="upperVoice" { \voiceOne \upperVoice }
  \context Voice="lowerVoice" { \voiceFour \lowerVoice }
  }

\score {
  \context Staff="Musique" << 
    \midiStuff
    \global
    \Guitare 
    >>
  \midi { \tempo 4=108 }
  \layout {
    linewidth = 180.000 \mm
    textheight = 250.000 \mm
    }
  }
  
\paper {
    #(set-paper-size "a4")
    textheight = 24.0 \cm    % for A4 paper
    %textheight = 22.2 \cm    % for Letter paper
    }

reply via email to

[Prev in Thread] Current Thread [Next in Thread]