Re: Convert Lilypond syntax to Scheme list

2014-06-22 Thread Thorsten Jolitz
David Kastrup writes: > Thorsten Jolitz writes: > >> I still wonder if there is a way to get my hands on this internal >> representation without modifying the music notation, i.e without >> writing >> >> , >> | { >> | \displayMusic { c'4\f } >> | } >> ` >> >> in my .ly file

Re: Convert Lilypond syntax to Scheme list

2014-06-21 Thread David Kastrup
Thorsten Jolitz writes: > I still wonder if there is a way to get my hands on this internal > representation without modifying the music notation, i.e without > writing > > , > | { > | \displayMusic { c'4\f } > | } > ` > > in my .ly files? The normal course of LilyPond is t

Re: Convert Lilypond syntax to Scheme list

2014-06-21 Thread Thorsten Jolitz
Jay Anderson writes: > On Sat, Jun 21, 2014 at 6:36 PM, Thorsten Jolitz wrote: >> How do I get this list/parse-tree representation of a lilypond file >> (without any further processing, just the Lisp representation as >> output to stdout or into a file)? > > http://lilypond.org/doc/v2.18/Documen

Re: Convert Lilypond syntax to Scheme list

2014-06-21 Thread Jay Anderson
On Sat, Jun 21, 2014 at 6:36 PM, Thorsten Jolitz wrote: > How do I get this list/parse-tree representation of a lilypond file > (without any further processing, just the Lisp representation as > output to stdout or into a file)? http://lilypond.org/doc/v2.18/Documentation/notation/available-music

Convert Lilypond syntax to Scheme list

2014-06-21 Thread Thorsten Jolitz
Hi List, probably a pretty noob question, so excuse my ignorance: I assume, a parsed .ly file is represented as a (Scheme) list - correctly so? This list (parse-tree) is probably used for creating the final ps/pdf output. How do I get this list/parse-tree representation of a lilypond file (wi