]> git.donarmstrong.com Git - lilypond.git/blobdiff - Documentation/cs/usage/running.itely
Imported Upstream version 2.19.45
[lilypond.git] / Documentation / cs / usage / running.itely
index c0ab29321435b374f95396e24822c798447de6cb..a11801f05ff563ec76a2c5a9dda7a92cf6370330 100644 (file)
@@ -8,7 +8,7 @@
     Guide, node Updating translation committishes..
 @end ignore
 
-@c \version "2.17.6"
+@c \version "2.19.21"
 
 @c Translators: Pavel Fric
 
@@ -765,9 +765,9 @@ annehmen, dass folgendes Beispiel alle Notenköpfe in dem Notensystem
 rot macht, aber als Resultat hat man zwei Systeme, während die
 Notenköpfe immernoch schwarz im unteren System erscheinen.
 
-@lilypond[quote,verbatim,relative=2]
+@lilypond[quote,verbatim,fragment]
 \override Staff.NoteHead.color = #red
-\new Staff { a }
+\new Staff { a' }
 @end lilypond
 
 Das liegt daran, dass kein @code{Staff}-Kontext existiert, wenn
@@ -776,10 +776,10 @@ für diesen Befehl erstellt wird.  Dann aber erstellt @code{\new Staff}
 noch ein zusätzliches System, wo die Noten gesetzt werden.  Die
 richtige Schreibweise wäre:
 
-@lilypond[quote,verbatim,relative=2]
+@lilypond[quote,verbatim]
 \new Staff {
   \override Staff.NoteHead.color = #red
-  a
+  a'
 }
 @end lilypond
 
@@ -791,7 +791,7 @@ erstellen.
 
 @lilypond[quote,verbatim]
 \repeat unfold 2 {
-  \relative c' { c4 d e f }
+  \relative { c'4 d e f }
 }
 @end lilypond
 
@@ -801,7 +801,7 @@ umgangen werden.
 @lilypond[quote,verbatim]
 \new Voice {
   \repeat unfold 2 {
-    \relative c' { c4 d e f }
+    \relative { c'4 d e f }
   }
 }
 @end lilypond