From b014369ed3d760644d1082595336bf907d965938 Mon Sep 17 00:00:00 2001 From: Till Paala Date: Sat, 27 Jun 2009 15:29:32 +0300 Subject: [PATCH] =?utf8?q?Doc-de:=C2=A0further=20updates=20from=20master?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit --- Documentation/de/user/lilypond-book.itely | 2 +- .../de/user/programming-interface.itely | 23 ++++++++++++------- Documentation/de/user/rhythms.itely | 6 +---- Documentation/de/user/simultaneous.itely | 8 +++---- Documentation/de/user/spacing.itely | 2 +- Documentation/de/user/templates.itely | 2 +- Documentation/de/user/tutorial.itely | 13 ++++++++--- Documentation/de/user/tweaks.itely | 9 +++++++- 8 files changed, 41 insertions(+), 24 deletions(-) diff --git a/Documentation/de/user/lilypond-book.itely b/Documentation/de/user/lilypond-book.itely index 9b950b801f..ae38383538 100644 --- a/Documentation/de/user/lilypond-book.itely +++ b/Documentation/de/user/lilypond-book.itely @@ -1,7 +1,7 @@ @c -*- coding: utf-8; mode: texinfo; documentlanguage: de -*- @c This file is part of lilypond-program.tely @ignore - Translation of GIT committish: 499a511d4166feaada31114e097f86b5e0c56421 + Translation of GIT committish: d96023d8792c8af202c7cb8508010c0d3648899d When revising a translation, copy the HEAD committish of the version that you are working on. See TRANSLATION for details. diff --git a/Documentation/de/user/programming-interface.itely b/Documentation/de/user/programming-interface.itely index be2dfb1089..06a095f215 100644 --- a/Documentation/de/user/programming-interface.itely +++ b/Documentation/de/user/programming-interface.itely @@ -1,7 +1,7 @@ @c -*- coding: utf-8; mode: texinfo; -*- @c This file is part of lilypond.tely @ignore - Translation of GIT committish: d79348b1cda7e897422c58d5b9a4a6be1da03731 + Translation of GIT committish: d96023d8792c8af202c7cb8508010c0d3648899d When revising a translation, copy the HEAD committish of the version that you are working on. See TRANSLATION for details. @@ -486,6 +486,10 @@ um komplizierte musikalische Funktionen zu erstellen. @subsection Displaying music expressions @cindex interne Speicherung +@cindex Musikausdrücke anzeigen +@cindex Anzeigen von Musikausdrücken + +@funindex displayMusic @funindex \displayMusic Wenn man eine musikalische Funktion erstellt, ist es oft @@ -1364,13 +1368,16 @@ Für einen Notenkopf beispielsweise ist das ein Hier ist eine Funktion, die mit @code{\applyOutput} benutzt werden kann; sie macht Notenköpfe auf der Mittellinie unsichtbar: -@example -(define (blanker grob grob-origin context) - (if (and (memq (ly:grob-property grob 'interfaces) - note-head-interface) - (eq? (ly:grob-property grob 'staff-position) 0)) - (set! (ly:grob-property grob 'transparent) #t))) -@end example +@lilypond[quote,verbatim,ragged-right] +#(define (blanker grob grob-origin context) + (if (and (memq 'note-head-interface (ly:grob-interfaces grob)) + (eq? (ly:grob-property grob 'staff-position) 0)) + (set! (ly:grob-property grob 'transparent) #t))) + +\relative { + e4 g8 \applyOutput #'Voice #blanker b d2 +} +@end lilypond @node Scheme procedures as properties diff --git a/Documentation/de/user/rhythms.itely b/Documentation/de/user/rhythms.itely index 461d60f771..c24dbede61 100644 --- a/Documentation/de/user/rhythms.itely +++ b/Documentation/de/user/rhythms.itely @@ -1,6 +1,6 @@ @c -*- coding: utf-8; mode: texinfo; documentlanguage: de -*- @ignore - Translation of GIT committish: 5131c3292d30cabdf08839daa02a006e4d3c96c5 + Translation of GIT committish: d96023d8792c8af202c7cb8508010c0d3648899d When revising a translation, copy the HEAD committish of the version that you are working on. See TRANSLATION for details. @@ -1622,10 +1622,6 @@ Referenz der Interna: @knownissues -Automatische Bebalkung von weit außeinander liegenden Noten -(wobei der Balken als Knie erscheint) kann nicht mit versteckten -Systemen benutzt werden. Siehe @ref{Hiding staves}. - Balken können mit Notenköpfen und Versetzungszeichen in anderen Stimmen zusammenstoßen. diff --git a/Documentation/de/user/simultaneous.itely b/Documentation/de/user/simultaneous.itely index eecb69d98b..805f1ddbd9 100644 --- a/Documentation/de/user/simultaneous.itely +++ b/Documentation/de/user/simultaneous.itely @@ -1,6 +1,6 @@ @c -*- coding: utf-8; mode: texinfo; documentlanguage: de -*- @ignore - Translation of GIT committish: 6bf3e9149eb97e66b4c813e41dc7625f06c501aa + Translation of GIT committish: d96023d8792c8af202c7cb8508010c0d3648899d When revising a translation, copy the HEAD committish of the version that you are working on. See TRANSLATION for details. @@ -95,13 +95,13 @@ System: @lilypond[quote,verbatim,relative=2] \new Voice { % explicit single voice - << {a4 b g2} {d4 g c,2} >> + << { a4 b g2 } { d4 g c,2 } >> } @end lilypond @lilypond[quote,verbatim,relative=2] % single first note -a << {a4 b g} {d4 g c,} >> +a << { a4 b g } { d4 g c, } >> @end lilypond Dass kann benutzt werden, wenn die simultanen Abschnitte einen @@ -114,7 +114,7 @@ mehrere Systeme erstellt: @lilypond[quote,verbatim,relative=2] % no single first note -<< {a4 b g2} {d4 g2 c,4} >> +<< { a4 b g2 } { d4 g2 c,4 } >> @end lilypond In diesem Fall stellt der unterschiedliche Rhythmus kein Problem dar. diff --git a/Documentation/de/user/spacing.itely b/Documentation/de/user/spacing.itely index 8684154c61..950ea30ad8 100644 --- a/Documentation/de/user/spacing.itely +++ b/Documentation/de/user/spacing.itely @@ -1,7 +1,7 @@ @c -*- coding: utf-8; mode: texinfo; documentlanguage: de -*- @c This file is part of lilypond.tely @ignore - Translation of GIT committish: 6bf3e9149eb97e66b4c813e41dc7625f06c501aa + Translation of GIT committish: d96023d8792c8af202c7cb8508010c0d3648899d When revising a translation, copy the HEAD committish of the version that you are working on. See TRANSLATION for details. diff --git a/Documentation/de/user/templates.itely b/Documentation/de/user/templates.itely index 5f8a4a704d..b88d665760 100644 --- a/Documentation/de/user/templates.itely +++ b/Documentation/de/user/templates.itely @@ -1,7 +1,7 @@ @c -*- coding: utf-8; mode: texinfo; documentlanguage: de -*- @c This file is part of lilypond-learning.tely @ignore - Translation of GIT committish: d415427752fa5fd83b0da189d677481d1c7f3043 + Translation of GIT committish: d96023d8792c8af202c7cb8508010c0d3648899d When revising a translation, copy the HEAD committish of the version that you are working on. See TRANSLATION for details. diff --git a/Documentation/de/user/tutorial.itely b/Documentation/de/user/tutorial.itely index f451c07d88..311a741138 100644 --- a/Documentation/de/user/tutorial.itely +++ b/Documentation/de/user/tutorial.itely @@ -1,7 +1,7 @@ @c -*- coding: utf-8; mode: texinfo; documentlanguage: de -*- @c This file is part of lilypond.tely @ignore - Translation of GIT committish: 6bf3e9149eb97e66b4c813e41dc7625f06c501aa + Translation of GIT committish: d96023d8792c8af202c7cb8508010c0d3648899d When revising a translation, copy the HEAD committish of the version that you are working on. See TRANSLATION for details. @@ -544,8 +544,8 @@ immer klein geschrieben werden, @w{@code{@{ c d e @}}} funktioniert, während @w{@code{@{ C D E @}}} einen Fehler produziert. @item @strong{Leerzeichen:} -Es spielt keine Rolle, wie viele Leerzeichen oder leere Zeilen sich zwischen -den Zeichen der Quelldatei befinden. +Es spielt keine Rolle, wie viele Leerzeichen oder Tabulatoren oder +leere Zeilen sich zwischen den Zeichen der Quelldatei befinden. @w{@code{@{ c d e @}}} bedeutet das Gleiche wie @w{@code{@{ c @ @ @ @ @ d e @}}} oder @example @@ -563,6 +563,13 @@ ist es, Code-Blöcke mit der Tab-Taste oder zwei Leerzeichen einzurücken: @} @end example +Leerzeichen @emph{sind} jedoch nötig, um viele syntaktische Elemente +voneinander zu trennen. Leerzeichen können also immer @emph{hinzugefügt} +werden, aber sie dürfen nicht @emph{entfernt} werden. Da fehlende +Leerzeichen sehr seltsame Fehlermeldungen hervorrrufen können, wird +es nahe gelegt, immer ein Leerzeichen vor und nach jedem syntaktischen +Element, etwa vor und nach geschweiften Kklammern, einzufügen. + @item @strong{Ausdrücke:} Auch der kleinste Abschnitt an LilyPond-Code muss in @strong{@{ geschweifte Klammern @}} eingeschlossen werden. Diese diff --git a/Documentation/de/user/tweaks.itely b/Documentation/de/user/tweaks.itely index b32fee4dbf..6c8af962f5 100644 --- a/Documentation/de/user/tweaks.itely +++ b/Documentation/de/user/tweaks.itely @@ -1,7 +1,7 @@ @c -*- coding: utf-8; mode: texinfo; documentlanguage: de -*- @c This file is part of lilypond-learning.tely @ignore - Translation of GIT committish: 499a511d4166feaada31114e097f86b5e0c56421 + Translation of GIT committish: d96023d8792c8af202c7cb8508010c0d3648899d When revising a translation, copy the HEAD committish of the version that you are working on. See TRANSLATION for details. @@ -1171,6 +1171,13 @@ den richtigen Kontext mitanzugeben: @noindent Jetzt sind die Taktlinien wirklich verschwunden. +Es sollte jedoch beachtet werden, dass das Setzen der +@code{stencil}-Eigenschaft auf @code{#f} zu Fehlerhinweisen führen +kann, wenn die Dimensionen des Objekts für die richtige Behandlung +benötigt werden. Zum Beispiel werden Fehler ausgegeben, wenn +die @code{stencil}-Eigenschaft des @code{NoteHead}-Objekts auf +@code{#f} gesetzt wird. + @subheading break-visibility -- 2.39.5