X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=input%2Flsr%2Foutputting-the-version-number.ly;h=43ea09d16e68a9017d3e5306d4bcef7b38ab02d7;hb=076b15ac89c6402ac2729d17bb53107d4d1342a2;hp=b825f8cb919b5dd617ca8bd49b109f74f9adc69a;hpb=fde2e58d53e937105be9ce3b0bfaced28062822e;p=lilypond.git diff --git a/input/lsr/outputting-the-version-number.ly b/input/lsr/outputting-the-version-number.ly index b825f8cb91..43ea09d16e 100644 --- a/input/lsr/outputting-the-version-number.ly +++ b/input/lsr/outputting-the-version-number.ly @@ -1,20 +1,23 @@ %% Do not edit this file; it is auto-generated from input/new %% This file is in the public domain. -\version "2.11.38" +\version "2.12.0" \header { - doctitle = "Outputting the version number" lsrtags = "text" texidoc = " -By putting the output of @code{lilypond-version} into a lyric or a +By putting the output of @code{lilypond-version} into lyrics or a text markup, it is possible to print the version number of LilyPond in a score, or in a document generated with @code{lilypond-book}. " -} -% begin verbatim -\score { \context Lyrics { - \override Score.RehearsalMark #'self-alignment-X = #LEFT - \mark #(ly:export (string-append "Processed with LilyPond version " (lilypond-version))) + doctitle = "Outputting the version number" +} % begin verbatim + + +\score { + \new Lyrics { + \override Score.RehearsalMark #'self-alignment-X = #LEFT + \mark #(ly:export (string-append "Processed with LilyPond version " + (lilypond-version))) s2 } }