Jump to content

Help talk:Score

Page contents not supported in other languages.
From Wikipedia, the free encyclopedia

Nice SVG score output

[edit]

If you want nice SVG output, which actually works really nicely (I have it working on various instances of MediaWiki) then please make some noise on phab:T49578. It's ridiculous that this feature request is now eleven years old and I don't think anyone involved has any appreciation of how much of a difference it would make. The work has been done, it just needs to be deployed. — Jon (talk) 00:42, 21 June 2024 (UTC)[reply]

Rhytm problem

[edit]

I've transcribed this song, but I can't write correctly the measure 5. The first note should have a dot, but if I put the dot the measure is too big; I can't see errors, what could be the problem?

\relative c'
{ \key es \major \time 4/4\partial 4
d4 | es4. g8  bes4 bes | g4. bes4 es4 es | f4 g as f | es4. d8 d4 bes | g'4 g8 f8. f16 e8. e16 | f2 r4 d4 | c8. c16 d8. es16 d4 c |
 bes r4 r bes| f'4. es8 d4 d | es4. bes8 bes4 bes |aes'4. g8 f4 f | g4. f8 es4 r | bes2 bes4 b | c4. d8 es4  es| es2 f | g2 r2 | es2 es4 es | es4. as8 bes4 as | g2 f | es2 r \bar "|."} 
\addlyrics {
<<
{Es braust ein Ruf wie Don -- ner -- hall, wie Schwert -- ge -- klirr und Wo -- gen -- prall:  
zum Rhein, zum Rhein, zum deu -- tschen Rhein, wer will des Stro -- mes Hü -- ter sein? 
Lieb Va -- ter -- land, magst ruh -- ig sein,
lieb Va -- ter -- land, magst ruh -- ig sein, 
fest steht und treu die Wacht, die Wacht am Rhein!
Fest steht und treu die Wacht, die Wacht am Rhein!}
>>
}

Ptolemaios (talk) 18:41, 11 August 2024 (UTC)[reply]

Some note durations are wrong in your transcription and mess up it's rhythm. For male singers, the setting at https://www.lieder-archiv.de/es_braust_ein_ruf_wie_donnerhall-notenblatt_300523.html seems more appropriate, notwithstanding Carl Wilhelm's original manuscript for "Die Wacht am Rhein". Further, the sixth-last not was wrong, G instead of A.

\relative c'
{ \key es \major \time 4/4\partial 4
d4 | es4. g8  bes4 bes | g4. bes8 es4 es | f4 g as f | es4. d8 d4 bes | g'4. g8 f8. f16 e8. e16 | f2 r4 d4 | c8. c16 d8. es16 d4 c |
 bes r4 r bes| f'4. es8 d4 d | es4. bes8 bes4 bes |aes'4. g8 f4 f | g4. f8 es4 r | bes2 bes4 b | c4. d8 es4  es| es2 f | g2 r2 | es2 es4 es | es4. g8 bes4 as | g2 f | es2 r \bar "|."} 
\addlyrics {
<<
{Es braust ein Ruf wie Don -- ner -- hall, wie Schwert -- ge -- klirr und Wo -- gen -- prall:  
zum Rhein, zum Rhein, zum deu -- tschen Rhein, wer will des Stro -- mes Hü -- ter sein? 
Lieb Va -- ter -- land, magst ruh -- ig sein,
lieb Va -- ter -- land, magst ruh -- ig sein, 
fest steht und treu die Wacht, die Wacht am Rhein!
Fest steht und treu die Wacht, die Wacht am Rhein!}
>>
}
-- Michael Bednarek (talk) 04:25, 12 August 2024 (UTC)[reply]

Conver Tool

[edit]

Can someone please make a convert tool? Like from midi or musicxml file to this score type? I really need a convert tool to save time! - ABAL1412🇻🇳🇸🇺🇷🇺 (talk ☭) 16:32, 1 September 2025 (UTC)[reply]

Add title and midi

[edit]

Hi, I had a working score with a midi (vorbis=1 midi=1) enabled, but I can't show any title using /header.


  \header {
    tagline = "" % no footer
    title = "Indonesia Raya"
    composer = "W. R. Supratman"
  }
\new Staff 
<<
 \new Voice = "1" { \voiceOne 
  \time 6/8
  \tempo 4 = 96
  \relative c'  { 
   \set Staff.midiInstrument = #"violin"
  r4 r8 c4 c8 | f4. a4 a8 | a4. a4 a8 | g4. e4 e8 | e4. g4 g8 | g4. f4 e8 | d4. e4 d8 | c2.~
  c4. r8 r4
  }
 }
>>

Then I tried using raw=1 according to the example on the page, and the title showed up, but it isn't compatible with vorbis/midi


  \header {
    tagline = "" % no footer
    title = "Indonesia Raya"
    composer = "W. R. Supratman"
  }
\new Staff 
<<
 \new Voice = "1" { \voiceOne 
  \time 6/8
  \tempo 4 = 96
  \relative c'  { 
   \set Staff.midiInstrument = #"violin"
  r4 r8 c4 c8 | f4. a4 a8 | a4. a4 a8 | g4. e4 e8 | e4. g4 g8 | g4. f4 e8 | d4. e4 d8 | c2.~
  c4. r8 r4
  }
 }
>>


No MIDI file generated despite being requested. If you are working in raw LilyPond mode, make sure to provide a proper \midi block.

So, how can I display both title and the midi? Thanks. Bennylin (talk) 18:18, 27 September 2025 (UTC)[reply]


\header {
    tagline = "" % no footer
    title = "Indonesia Raya"
    composer = "W. R. Supratman"
  }
\score {
 \relative c' {
  \time 6/8
  \tempo 4 = 96
  \set Staff.midiInstrument = #"violin"
  r4 r8 c4 c8 | f4. a4 a8 | a4. a4 a8 | g4. e4 e8 | e4. g4 g8 | g4. f4 e8 | d4. e4 d8 | c2.~
  c4. r8 r4 }
  \layout { line-width = 200\mm }
  \midi { }
}

Grimes2 19:57, 27 September 2025 (UTC)[reply]