Basic Roman numeral and figured bass analysis: Difference between revisions
Appearance
m Lemzwerg moved page Basic Roman Numeral and Figured Bass Analysis to Basic Roman numeral and figured bass analysis without leaving a redirect: Only the first letter of a title should be uppercase |
mNo edit summary |
||
| Line 1: | Line 1: | ||
If you need to create some basic roman numeral and figured bass analysis within the body of a score, you can create a staff with the standard engravers removed and add markup to spaces. | If you need to create some basic roman numeral and figured bass analysis within the body of a score, you can create a staff with the standard engravers removed and add markup to spaces. | ||
<lilypond version="2.24" | <lilypond version="2.24"> | ||
<< | << | ||
\new Staff \relative c' { | \new Staff \relative c' { | ||
| Line 25: | Line 23: | ||
[[Category:Text]] | [[Category:Text]] | ||
[[Category:Specific notation]] | [[Category:Specific notation]] | ||
[[Category:Chords]] | [[Category:Chords]] | ||
[[Category:Snippet]] | [[Category:Snippet]] | ||
Latest revision as of 11:58, 12 July 2026
If you need to create some basic roman numeral and figured bass analysis within the body of a score, you can create a staff with the standard engravers removed and add markup to spaces.
\version "2.24"
<<
\new Staff \relative c' {
<c e g>2 <c f a> | <c e g> <b d g> | <c e g>1 |
}
\new Staff \with {
\remove "Staff_symbol_engraver"
\remove "Time_signature_engraver"
\remove "Clef_engraver"
} {
s2^\markup { \halign #2 C: I }
s^\markup { \super \column { 6 \vspace #-0.4 4 } } |
s^\markup { \super \column { 5 \vspace #-0.4 3 } }
s^\markup { \lower #1 "V" \super \column { 6 \vspace #-0.5 3 } } |
s1^\markup "I"
}
>>