]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/de/user/non-music.itely
Split WWW target in two stages WWW-1 and WWW-2
[lilypond.git] / Documentation / de / user / non-music.itely
1 @c -*- coding: utf-8; mode: texinfo; documentlanguage: de -*-
2 @c This file is part of lilypond.tely
3 @ignore
4     Translation of GIT committish: 02cb8b672238eeb53bffa2240c87f23dd8ca9e60
5
6     When revising a translation, copy the HEAD committish of the
7     version that you are working on.  See TRANSLATION for details.
8 @end ignore
9
10
11 @node Non-musical notation
12 @chapter Non-musical notation
13
14 UNTRANSLATED NODE: IGNORE ME
15
16 @menu 
17 * Titles and headers::
18 * MIDI output::
19 * other midi::
20 @end menu 
21 @node Titles and headers
22 @section Titles and headers
23
24 UNTRANSLATED NODE: IGNORE ME
25
26 @menu 
27 * Creating titles::
28 * Custom titles::
29 * Reference to page numbers::
30 * Table of contents::
31 @end menu 
32 @node Creating titles
33 @subsection Creating titles
34
35 UNTRANSLATED NODE: IGNORE ME
36
37 @node Custom titles
38 @subsection Custom titles
39
40 UNTRANSLATED NODE: IGNORE ME
41
42 @node Reference to page numbers
43 @subsection Reference to page numbers
44
45 UNTRANSLATED NODE: IGNORE ME
46
47 @node Table of contents
48 @subsection Table of contents
49
50 UNTRANSLATED NODE: IGNORE ME
51
52 @node MIDI output
53 @section MIDI output
54
55 UNTRANSLATED NODE: IGNORE ME
56
57 @menu 
58 * Creating MIDI files::
59 * MIDI block::
60 * MIDI instrument names::
61 * What goes into the MIDI?  FIXME::
62 @end menu 
63 @node Creating MIDI files
64 @subsection Creating MIDI files
65
66 UNTRANSLATED NODE: IGNORE ME
67
68 @node MIDI block
69 @subsection MIDI block
70
71 UNTRANSLATED NODE: IGNORE ME
72
73 @node MIDI instrument names
74 @subsection MIDI instrument names
75
76 UNTRANSLATED NODE: IGNORE ME
77
78 @node What goes into the MIDI?  FIXME
79 @subsection What goes into the MIDI?  FIXME
80
81 UNTRANSLATED NODE: IGNORE ME
82
83 @menu 
84 * Repeats and MIDI::
85 @end menu
86
87 @node Repeats and MIDI
88 @subsubsection Repeats and MIDI
89
90 @cindex Erweiterung von Wiederholungen
91 @funindex \unfoldRepeats
92
93 Mit ein bisschen Anpassung können alle Wiederholungstypen 
94 auch in der MIDI-Datei wiedergegeben werden. Das wird erreicht 
95 durch die @code{\unfoldRepeats}-Funktion. Hiermit werden alle 
96 Wiederholungen, welcher Art auch immer, in notengetreue Wiederholungen 
97 umgewandelt, die Noten werden also wiederholt ausgegeben.
98
99 @lilypond[quote,verbatim,fragment,line-width=8.0\cm]
100 \unfoldRepeats {
101   \repeat tremolo 8 {c'32 e' }
102   \repeat percent 2 { c''8 d'' }
103   \repeat volta 2 {c'4 d' e' f'}
104   \alternative {
105     { g' a' a' g' }
106     {f' e' d' c' }
107   }
108 }
109 \bar "|."
110 @end lilypond
111
112 Wenn man eine Partitur schreibt, die diesen @code{\unfoldRepeats}-Befehl 
113 für die MIDI-Ausgabe benutzt, muss man zwei @code{\score}-Umgebungen 
114 schreiben: eine für die MIDI-Ausgabe, wo die Wiederholungen ausgeschrieben 
115 werden, und eine für die gedruckte Notation, in der Klammern, Tremolo und 
116 Prozent-Wiederholungen benutzt werden. Zum Beispiel:
117
118 @example
119 \score @{
120   @var{..music..}
121   \layout @{ .. @}
122 @}
123 \score @{
124   \unfoldRepeats @var{..music..}
125   \midi @{ .. @}
126 @}
127 @end example
128
129
130 @node other midi
131 @section other midi
132
133 UNTRANSLATED NODE: IGNORE ME
134
135
136 -- SKELETON FILE --
137 When you actually translate this file, please remove these lines as
138 well as all `UNTRANSLATED NODE: IGNORE ME' lines.