3.16 Musiknoten erstellen

[unmarkierte Version][unmarkierte Version]
Keine Bearbeitungszusammenfassung
Keine Bearbeitungszusammenfassung
Zeile 2: Zeile 2:


<loop_area type="example">
<loop_area type="example">
'''Code:'''
'''Syntax:'''
<code><score>\relative c' { f d f a d f e d cis a cis e a g f e }</score></code>
<code><score>\relative c' { f d f a d f e d cis a cis e a g f e }</score></code>


Zeile 14: Zeile 14:


<loop_area type="example">
<loop_area type="example">
'''Code:'''
'''Syntax:'''
<code><score lang="ABC">
<code><score lang="ABC">
X:1
X:1
Zeile 45: Zeile 45:


<loop_area type="example">
<loop_area type="example">
'''Code:'''
'''Syntax:'''
<code><score>\relative c'' { \time 4/4 \key c \major  
<code><score>\relative c'' { \time 4/4 \key c \major  
c4 g8 g a4 g r b^> c^> r \bar "|." }  
c4 g8 g a4 g r b^> c^> r \bar "|." }  

Version vom 16. Februar 2016, 15:53 Uhr

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

Beispiel

Syntax:

<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[]

Als Standardsprache für "Score" ist "LilyPond" eingerichtet. Jedoch wird auch der offene Standard ABC oder auch ABCPLus unterstützt. Dieser ist ein offener Standard zur Notation von Musik in Textform. Ein Minimalbeispiel finden Sie hier:

Beispiel

Syntax:

<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[]

Mit dem Parameter \addlyrics lassen sich Liedtexte unter den Noten hinzufügen.

Beispiel

Syntax:

<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.