]> git.donarmstrong.com Git - lilypond.git/blob - input/test/version-output.ly
Fix #362 (2)
[lilypond.git] / input / test / version-output.ly
1 \version "2.10.0"
2
3 \header {
4
5
6     texidoc = #(string-append "By putting the output of
7     @code{lilypond-version} into a lyric, it is possible to print the 
8     version number of LilyPond in a score, or in a document generated
9     with @code{lilypond-book}.  Another possibility is to append the 
10     version number to the doc-string, in this manner: "
11
12   (lilypond-version)
13   )
14     
15 }
16
17 \score { \context Lyrics  {
18     \override Score.RehearsalMark  #'self-alignment-X = #LEFT
19     \mark #(ly:export (string-append "Processed with LilyPond version " (lilypond-version)))
20     s2
21   }
22 }
23
24