]> git.donarmstrong.com Git - lilypond.git/blobdiff - Documentation/snippets/outputting-the-version-number.ly
Rerun scripts/auxiliar/update-with-convert-ly.sh
[lilypond.git] / Documentation / snippets / outputting-the-version-number.ly
index 05c1e88a76ecb9de1424f74369ecd0d505ea84a8..742e687c9300aabe9742f8932d7df54292332023 100644 (file)
@@ -4,21 +4,10 @@
 %% and then run scripts/auxiliar/makelsr.py
 %%
 %% This file is in the public domain.
-\version "2.14.2"
+\version "2.17.6"
 
 \header {
-  lsrtags = "really-simple, text, titles, scheme-language"
-
-%% Translation of GIT committish: 57f9346bb030f49336a858fcbf1519366fe56454
-  texidocfr = "
-L'insertion du résultat de @code{lilypond-version} dans des paroles
-permet d'ajouter à la partition ou au document généré par
-@code{lilypond-book} le numéro de la version de LilyPond utilisée.  Une
-autre possibilité consiste à l'ajouter à une chaîne textuelle comme
-ci-dessous.
-
-"
-  doctitlefr = "Impression du numéro de version"
+  lsrtags = "really-simple, scheme-language, text, titles"
 
   texidoc = "
 By putting the output of
@@ -34,11 +23,8 @@ By putting the output of
 
 \score {
   \new Lyrics {
-    \override Score.RehearsalMark #'self-alignment-X = #LEFT
+    \override Score.RehearsalMark.self-alignment-X = #LEFT
     \mark #(string-append "Processed with LilyPond version " (lilypond-version))
     s2
   }
 }
-
-
-