]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/de/user/staff.itely
Split WWW target in two stages WWW-1 and WWW-2
[lilypond.git] / Documentation / de / user / staff.itely
1 @c -*- coding: utf-8; mode: texinfo; -*-
2 @ignore
3     Translation of GIT committish: f7420240e4ce1fe2217646482a47d00f566af52c
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.38"
10
11 @node Staff notation
12 @section Staff notation
13
14 staff = singular, staves = plural
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. Das wird gezeigt in den Beispieldateien 
137 @lsr{staff,changing-the-number-of-lines-in-a-staff.ly} und
138 @lsr{staff,changing-the-staff-size.ly}.
139
140 Zusätzlich können Systeme beliebig begonnen und beendet werden. Das 
141 geschieht mit den Befehlen @code{\startStaff} und @code{\stopStaff}.
142
143 @lilypond[verbatim,relative=2,fragment]
144 b4 b
145 \override Staff.StaffSymbol #'line-count = 2
146 \stopStaff \startStaff
147 b b
148 \revert Staff.StaffSymbol #'line-count
149 \stopStaff \startStaff
150 b b
151 @end lilypond
152
153 Kombiniert mit verkleinerten Systemen, kann man diese Funktion etwa 
154 benutzen, um Ossia-Abschnitte zu notieren. Siehe das Beispiel:
155
156 @cindex Ossia
157
158 @c @lilypondfile{ossia.ly}
159
160 @cindex Notenlinien, Anzahl
161 @cindex Notenlinien, Dicke
162 @cindex Dicke der Notenlinien einstellen
163 @cindex Anzahl der Notenlinien einstellen
164 @cindex Zahl der Notenlinien einstellen
165
166 @seealso
167
168 Programmreferenz: @rinternals{StaffSymbol}.
169
170 Beispiele: @lsrdir{staff}
171
172
173 @node Hiding staves
174 @unnumberedsubsubsec Hiding staves
175
176 UNTRANSLATED NODE: IGNORE ME
177
178
179 @node Writing parts
180 @subsection Writing parts
181
182 @menu
183 * Metronome marks::             
184 * Instrument names::            
185 * Quoting other voices::        
186 * Formatting cue notes::        
187 @end menu
188
189 @node Metronome marks
190 @unnumberedsubsubsec Metronome marks
191
192 UNTRANSLATED NODE: IGNORE ME
193
194
195 @node Instrument names
196 @unnumberedsubsubsec Instrument names
197
198 UNTRANSLATED NODE: IGNORE ME
199
200
201 @node Quoting other voices
202 @unnumberedsubsubsec Quoting other voices
203
204 UNTRANSLATED NODE: IGNORE ME
205
206
207 @node Formatting cue notes
208 @unnumberedsubsubsec Formatting cue notes
209
210 UNTRANSLATED NODE: IGNORE ME
211