]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/de/user/staff.itely
Merge master into nested-bookparts
[lilypond.git] / Documentation / de / user / staff.itely
1 @c -*- coding: utf-8; mode: texinfo; -*-
2 @ignore
3     Translation of GIT committish: d0614c27e88dc7bd3993f3744a388749ba93b267
4
5     When revising a translation, copy the HEAD committish of the
6     version that you are working on.  See TRANSLATION for details.
7 @end ignore
8
9 @c \version "2.11.61"
10
11 @node Staff notation
12 @section Staff notation
13
14 @lilypondfile[quote]{staff-headword.ly}
15
16 @menu
17 * Displaying staves::           
18 * Writing parts::               
19 @end menu
20
21
22 @node Displaying staves
23 @subsection Displaying staves
24
25 @menu
26 * System start delimiters::     
27 * Staff symbol::                
28 * Hiding staves::               
29 @end menu
30
31 @node System start delimiters
32 @unnumberedsubsubsec System start delimiters
33
34 @cindex Beginn eines Notensystems
35 @cindex Systeme, mehrere
36 @cindex Notensysteme, mehrere
37 @cindex Klammer, vertikal
38 @cindex Klammer, geschweift
39 @cindex Partitur
40 @cindex Systemgruppe
41 @cindex Instrumentengruppe
42 @cindex Stimmgruppe
43 @cindex System, Chor
44
45 Viele Partituren bestehen aus mehr als einem Notensystem. Diese Systeme 
46 können auf vier unterschiedliche Arten verbunden werden:
47
48 @itemize @bullet
49 @item Die Gruppe wird mit einer Klammer an der linken Seite geöffnet und 
50 die Taktlinien sind verbunden. Das ist der Klaviersystem 
51 (@rinternals{GrandStaff})-Kontext.
52
53 @lilypond[verbatim,ragged-right,quote]
54 \new GrandStaff
55 \relative <<
56   \new Staff { c1 c }
57   \new Staff { c c }
58 >>
59 @end lilypond
60
61 @item Die Gruppe beginnt mit einer Klammer und die Taktlinien sind verbunden. 
62 Dieses Verhalten erzeugt der Stimmgruppen 
63 (@rinternals{StaffGroup})-Kontext.
64
65 @lilypond[verbatim,ragged-right,quote]
66 \new StaffGroup
67 \relative <<
68   \new Staff { c1 c }
69   \new Staff { c c }
70 >>
71 @end lilypond
72
73 @item Die Gruppe beginnt mit einer Klammer, aber die Taktlinien sind nicht 
74 miteinander verbunden. Das wird mit dem Chorsystem 
75 (@rinternals{ChoirStaff})-Kontext erreicht.
76
77 @lilypond[verbatim,ragged-right,quote]
78 \new ChoirStaff
79 \relative <<
80   \new Staff { c1 c }
81   \new Staff { c c }
82 >>
83 @end lilypond
84
85 @item Die Gruppe beginnt mit einer vertikalen Linie. Taktlinien sind nicht 
86 verbunden. Das ist die Standardeinstellung für eine Partitur.
87
88 @lilypond[verbatim,ragged-right,quote]
89 \relative <<
90   \new Staff { c1 c }
91   \new Staff { c c }
92 >>
93 @end lilypond
94 @end itemize
95
96
97 @seealso
98
99 Die Definition der Taktlinien am Beginn jedes Systems werden mit 
100 den Befehlen @rinternals{SystemStartBar}, @rinternals{SystemStartBrace} 
101 und @rinternals{SystemStartBracket} festgelegt. Nur einer dieser 
102 drei Typen wird in jedem Kontext erstellt, und dieser Typ wird durch 
103 die @code{systemStartDelimiter}-Eigenschaft bestimmt.
104
105
106 @commonprop
107
108 Anfangsklammern können tief einander verschachtelt werden.
109
110 @lilypond[quote,ragged-right,verbatim]
111 \new StaffGroup
112 \relative <<
113   \set StaffGroup.systemStartDelimiterHierarchy
114     = #'(SystemStartSquare (SystemStartBracket a (SystemStartSquare b)) d)
115   \new Staff { c1 }
116   \new Staff { c1 }
117   \new Staff { c1 }
118   \new Staff { c1 }
119   \new Staff { c1 }
120 >>
121 @end lilypond
122
123
124 @node Staff symbol
125 @unnumberedsubsubsec Staff symbol
126
127 @cindex Justierung von Notensystemen
128 @cindex Notensysteme, Modifikation
129
130 Noten, Dynamikzeichen usw. werden auf den Notenlinien angeordnet, die 
131 sich zu einem Notensystem zusammenfassen lassen. Das Programm LilyPond 
132 zeichnet diese Linien durch ein spezielles graphisches Objekt, 
133 @code{staff symbol} (engl. @qq{staff} = Notensystem) genannt.
134
135 Dieses Objekt kann bezüglich seiner Eigenschaften, wie Anzahl, Dicke und 
136 Abstand der Linien verändert werden.
137
138 @c Das wird gezeigt in den Beispieldateien 
139 @c @lsr{staff,changing-the-number-of-lines-in-a-staff.ly} und
140 @c @lsr{staff,changing-the-staff-size.ly}.
141
142 Zusätzlich können Systeme beliebig begonnen und beendet werden. Das 
143 geschieht mit den Befehlen @code{\startStaff} und @code{\stopStaff}.
144
145 @lilypond[verbatim,relative=2,fragment]
146 b4 b
147 \override Staff.StaffSymbol #'line-count = 2
148 \stopStaff \startStaff
149 b b
150 \revert Staff.StaffSymbol #'line-count
151 \stopStaff \startStaff
152 b b
153 @end lilypond
154
155 Kombiniert mit verkleinerten Systemen, kann man diese Funktion etwa 
156 benutzen, um Ossia-Abschnitte zu notieren. Siehe das Beispiel:
157
158 @cindex Ossia
159
160 @c @lilypondfile{ossia.ly}
161
162 @cindex Notenlinien, Anzahl
163 @cindex Notenlinien, Dicke
164 @cindex Dicke der Notenlinien einstellen
165 @cindex Anzahl der Notenlinien einstellen
166 @cindex Zahl der Notenlinien einstellen
167
168 @seealso
169
170 Programmreferenz:
171 @rinternals{StaffSymbol}.
172
173 Beispiele:
174 @rlsr{Staff notation}.
175
176
177 @node Hiding staves
178 @unnumberedsubsubsec Hiding staves
179
180 @untranslated
181
182
183 @node Writing parts
184 @subsection Writing parts
185
186 @menu
187 * Metronome marks::             
188 * Instrument names::            
189 * Quoting other voices::        
190 * Formatting cue notes::        
191 @end menu
192
193 @node Metronome marks
194 @unnumberedsubsubsec Metronome marks
195
196 @untranslated
197
198
199 @node Instrument names
200 @unnumberedsubsubsec Instrument names
201
202 @untranslated
203
204
205 @node Quoting other voices
206 @unnumberedsubsubsec Quoting other voices
207
208 @untranslated
209
210
211 @node Formatting cue notes
212 @unnumberedsubsubsec Formatting cue notes
213
214 @untranslated
215