LEFT | RIGHT |
(no file at all) | |
1 @c -*- coding: utf-8; mode: texinfo; documentlanguage: ja -*- | 1 @c -*- coding: utf-8; mode: texinfo; documentlanguage: ja -*- |
2 @ignore | 2 @ignore |
3 Translation of GIT committish: cc3b9e1430f4cc9c54da7252e504f3d274a7ea17 | 3 Translation of GIT committish: cc3b9e1430f4cc9c54da7252e504f3d274a7ea17 |
4 | 4 |
5 When revising a translation, copy the HEAD committish of the | 5 When revising a translation, copy the HEAD committish of the |
6 version that you are working on. For details, see the Contributors' | 6 version that you are working on. For details, see the Contributors' |
7 Guide, node Updating translation committishes.. | 7 Guide, node Updating translation committishes.. |
8 @end ignore | 8 @end ignore |
9 | 9 |
10 @c \version "2.16.0" | 10 @c \version "2.17.6" |
11 | 11 |
12 @c Translators: Yoshiki Sawada | 12 @c Translators: Yoshiki Sawada |
13 @c Translation status: post-GDP | 13 @c Translation status: post-GDP |
14 | 14 |
15 @node 和音記譜法 | 15 @node 和音記譜法 |
16 @section 和音記譜法 | 16 @section 和音記譜法 |
17 @translationof Chord notation | 17 @translationof Chord notation |
18 | 18 |
19 @lilypondfile[quote]{chords-headword.ly} | 19 @lilypondfile[quote]{chords-headword.ly} |
20 | 20 |
(...skipping 151 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
172 @tab | 172 @tab |
173 @b{例} | 173 @b{例} |
174 | 174 |
175 @item | 175 @item |
176 無し | 176 無し |
177 @tab | 177 @tab |
178 デフォルトの動作で、長三和音を作り出します。 | 178 デフォルトの動作で、長三和音を作り出します。 |
179 @tab | 179 @tab |
180 @lilypond[line-width=4\cm, noragged-right] | 180 @lilypond[line-width=4\cm, noragged-right] |
181 \chordmode { | 181 \chordmode { |
182 \override Staff.TimeSignature #'stencil = ##f | 182 \override Staff.TimeSignature.stencil = ##f |
183 c1 | 183 c1 |
184 } | 184 } |
185 @end lilypond | 185 @end lilypond |
186 | 186 |
187 @item | 187 @item |
188 m, m7 | 188 m, m7 |
189 @tab | 189 @tab |
190 短和音。この修飾子は第 3 音を下げます。 | 190 短和音。この修飾子は第 3 音を下げます。 |
191 @tab | 191 @tab |
192 @lilypond[line-width=4\cm, noragged-right] | 192 @lilypond[line-width=4\cm, noragged-right] |
193 \chordmode { | 193 \chordmode { |
194 \override Staff.TimeSignature #'stencil = ##f | 194 \override Staff.TimeSignature.stencil = ##f |
195 c1:m c:m7 | 195 c1:m c:m7 |
196 } | 196 } |
197 @end lilypond | 197 @end lilypond |
198 | 198 |
199 | 199 |
200 @item | 200 @item |
201 dim, dim7 | 201 dim, dim7 |
202 @tab | 202 @tab |
203 減和音。この修飾子は 3 度と 5 度 (と存在する場合は 7 度) の音を下げます。 | 203 減和音。この修飾子は 3 度と 5 度 (と存在する場合は 7 度) の音を下げます。 |
204 @tab | 204 @tab |
205 @lilypond[line-width=4\cm, noragged-right] | 205 @lilypond[line-width=4\cm, noragged-right] |
206 \chordmode { | 206 \chordmode { |
207 \override Staff.TimeSignature #'stencil = ##f | 207 \override Staff.TimeSignature.stencil = ##f |
208 c1:dim c:dim7 | 208 c1:dim c:dim7 |
209 } | 209 } |
210 @end lilypond | 210 @end lilypond |
211 | 211 |
212 @item | 212 @item |
213 aug | 213 aug |
214 @tab | 214 @tab |
215 増和音。この修飾子は第 5 音を上げます。 | 215 増和音。この修飾子は第 5 音を上げます。 |
216 @tab | 216 @tab |
217 @lilypond[line-width=4\cm, noragged-right] | 217 @lilypond[line-width=4\cm, noragged-right] |
218 \chordmode { | 218 \chordmode { |
219 \override Staff.TimeSignature #'stencil = ##f | 219 \override Staff.TimeSignature.stencil = ##f |
220 c1:aug | 220 c1:aug |
221 } | 221 } |
222 @end lilypond | 222 @end lilypond |
223 | 223 |
224 @item | 224 @item |
225 maj, maj7 | 225 maj, maj7 |
226 @tab | 226 @tab |
227 長七和音。この修飾子は第 7 音を上げます。@c | 227 長七和音。この修飾子は第 7 音を上げます。@c |
228 @code{maj} の後の @code{7} はオプションです。@c | 228 @code{maj} の後の @code{7} はオプションです。@c |
229 長三和音を作り出す時にこの修飾子は @b{使いません}。 | 229 長三和音を作り出す時にこの修飾子は @b{使いません}。 |
230 @tab | 230 @tab |
231 @lilypond[line-width=4\cm, noragged-right] | 231 @lilypond[line-width=4\cm, noragged-right] |
232 \chordmode { | 232 \chordmode { |
233 \override Staff.TimeSignature #'stencil = ##f | 233 \override Staff.TimeSignature.stencil = ##f |
234 c1:maj c:maj7 | 234 c1:maj c:maj7 |
235 } | 235 } |
236 @end lilypond | 236 @end lilypond |
237 | 237 |
238 @end multitable | 238 @end multitable |
239 | 239 |
240 @seealso | 240 @seealso |
241 記譜法リファレンス: | 241 記譜法リファレンス: |
242 @ref{Common chord modifiers}, | 242 @ref{Common chord modifiers}, |
243 @ref{和音の拡張と変形} | 243 @ref{和音の拡張と変形} |
(...skipping 977 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1221 << | 1221 << |
1222 { fis4 g g, e' } | 1222 { fis4 g g, e' } |
1223 \figures { | 1223 \figures { |
1224 <6 5>4 <5 4> | 1224 <6 5>4 <5 4> |
1225 \bassFigureExtendersOn | 1225 \bassFigureExtendersOn |
1226 < 5 _!>4 <6> | 1226 < 5 _!>4 <6> |
1227 \bassFigureExtendersOff | 1227 \bassFigureExtendersOff |
1228 } | 1228 } |
1229 >> | 1229 >> |
1230 @end lilypond | 1230 @end lilypond |
LEFT | RIGHT |