Basic GUIDO Notation

Examples

    [ c e& _ f# ]  % notes, rests, accidentals

    % 2 voices:
    { [ c1*1/4 e&1*1/8 _*1/8 f1*1/2 ], [ c0*1/2 b&-1*1/2 ] }

    % same as before, without redundant information:
    { [ c1/4 e&/8 _ f/2 ], [ c0/2 b&-1/2 ] }

    % chord sequence
    [ {g1/4,b,d2} {g1,c2,e2} {c0*1,e1,c2} ]

    % clef, key, meter, dynamic markings, ...: 
    [ \clef<"g2"> \key<"F#"> \meter<"6/8"> \i<"f">
      \sl(f#1/4. g#/8) | \dim(\beam(f#/12 e# f#) a#/2) ]


© hh; last update 1998/09/28