Re: Exporting to Lilipond
Now that you have it defined, you actually need to use the tool on some input.
If I run it on this:!NoteWorthyComposerClip(2.0,Single)
|Clef|Type:Treble
|Key|Signature:C
|TimeSig|Signature:3/4
|Note|Dur:4th|Pos:-1
|Note|Dur:4th|Pos:0
|Note|Dur:4th|Pos:1
|Bar
!NoteWorthyComposerClip-End
I get this:
% Generated by nwc2ly version 0.21 http://nwc2ly.sf.net/
\version "2.4.0"
\header {
title = "Title"
subtitle = "Subtitle"
composer = "Composer"
instrument = "Instrument"
copyright = "Copyright"
}
\score {
\header {
piece = "Piece"
}
{
#(set-accidental-style 'modern-cautionary)
\clef treble
\key c\major
\time 3/4
a'4 b'4 c''4 | % 1
\bar "|."
}
}