3.16 Musiknoten erstellen

[unmarkierte Version][unmarkierte Version]
Zeile 11: Zeile 11:


=== ABC-Notation ===
=== ABC-Notation ===
ABC oder auch [https://de.wikipedia.org/wiki/ABC_(Musiknotation) ABCPLus] ist ein offener Standard zur Notation von Musik in Textform. Mit der Extention "score" wird auch die ABC-Notation in LOOP unterstützt und wie folgt angewendet.
<loop_area type="example">
<loop_area type="example">
'''Code:'''
'''Code:'''
<code><score lang="ABC">
<code><score lang="ABC">
X:1 (index)
X:1
T:Küstenlied (title)
M:C
C:Komponist (composer)
L:1/4
A:Hamburg (area)
K:C
S:Gesammelte Lieder der Küste (source)
M:C (time signature)
L:1/4 (note length)
R:jig (type of tune)
K:C (key)
C, D, E, F,|G, A, B, C|D E F G|A B c d|
C, D, E, F,|G, A, B, C|D E F G|A B c d|
e f g a|b c' d' e'|f' g' a' b'|]
e f g a|b c' d' e'|f' g' a' b'|]

Version vom 10. Februar 2016, 16:57 Uhr

Durch die Extention "Score" lassen sich auf einfache Weise Musiknoten in LOOP darstellen.

Beispiel

Code:

<score>\relative c' { f d f a d f e d cis a cis e a g f e }</score>

Ergebnis:

Ab Version 2.23.12 wurde der abgesicherte Modus von LilyPond entfernt. LilyPond-Dateien können beliebigen Code ausführen. Bitte lasse deine LilyPond-Installation in der Sandbox Shellbox laufen und setze $wgScoreSafeMode = false.


ABC-Notation[]

ABC oder auch ABCPLus ist ein offener Standard zur Notation von Musik in Textform. Mit der Extention "score" wird auch die ABC-Notation in LOOP unterstützt und wie folgt angewendet.

Beispiel

Code:

<score lang="ABC"> X:1 M:C L:1/4 K:C C, D, E, F,|G, A, B, C|D E F G|A B c d| e f g a|b c' d' e'|f' g' a' b'|] </score>

Ergebnis:

Ab Version 2.23.12 wurde der abgesicherte Modus von LilyPond entfernt. LilyPond-Dateien können beliebigen Code ausführen. Bitte lasse deine LilyPond-Installation in der Sandbox Shellbox laufen und setze $wgScoreSafeMode = false.

Hinzufügen von Liedtexten[]

Beispiel

Code:

<score>\relative c'' { \time 4/4 \key c \major c4 g8 g a4 g r b^> c^> r \bar "|." } \addlyrics { Shave and a hair -- cut: two bits. }</score>

Ergebnis:

Ab Version 2.23.12 wurde der abgesicherte Modus von LilyPond entfernt. LilyPond-Dateien können beliebigen Code ausführen. Bitte lasse deine LilyPond-Installation in der Sandbox Shellbox laufen und setze $wgScoreSafeMode = false.