grame-cncm / guidolib

Guido project - music score layout engine - music description language
http://guido.grame.fr
Mozilla Public License 2.0
155 stars 35 forks source link

Tie between chords #109

Closed arshiacont closed 4 years ago

arshiacont commented 4 years ago

How should one notate ties between notes of two chords?

Like this:

image

The following snippet (following Tie documentation online) does only one tie:

{[ 
   \clef<"f4"> 
    {f-1/4., c0/4., \tieBegin:1 a/4., \tieBegin:2 f1/4.  }
  { \tieEnd:1 a0/4, f1/4 \tieEnd:2  } ]
  }
dfober commented 4 years ago

you're almost there:

[ 
   \clef<"f4"> 
    {f-1/4., c0/4., \tieBegin:1<curve="down"> a/4., \tieBegin:2 f1/4.  }
  {  a0/4 \tieEnd:1, f1/4 \tieEnd:2  } 
]

Note the misplacement of \tieEnd:1

arshiacont commented 4 years ago

Ouch!!! Sorry! :)